home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-23 | 640 b | 28 lines | [TEXT/PJMM] |
- {****************************************************}
- {}
- { FS.p }
- {}
- { Main file for the Flight Stability application. }
- {}
- { Copyright © 1995, Patrick Hew. All rights reserved. }
- {}
- {****************************************************}
-
-
- program FS;
-
- { Turn off automatic initialization }
- {$I-}
-
- uses
- TCL, FSIntf;
-
- begin { FS }
- (* if your program needs extra stack space, call *)
- (* SetMinimumStack here *)
-
- new(CFSApp(gApplication));
- CFSApp(gApplication).IFSApp;
- gApplication.Run;
- gApplication.ExitApp;
- end. { FS }